home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / tools / lzm2dir < prev    next >
Text File  |  2008-11-21  |  397b  |  18 lines

  1. #!/bin/bash
  2. # convert .lzm compressed file back into directory tree
  3. #
  4. # Author: Tomas M. <http://www.linux-live.org>
  5. #
  6.  
  7. if [ ! -d "$2" ]; then
  8.    echo 
  9.    echo "Convert .lzm compressed module back into directory tree"
  10.    echo "usage: $0 source_file.lzm existing_output_directory"
  11.    exit 1
  12. fi
  13.  
  14. PATH=.:$(dirname $0):/usr/lib:$PATH
  15. . liblinuxlive || exit 1
  16.  
  17. unsquashfs -f -dest "$2" "$1" >/dev/null
  18.